home *** CD-ROM | disk | FTP | other *** search
- echo off
- Cursor 20 1
-
- REM The above line inverts the cursor - turning it off.
-
- PBShow 0 Example.scr
-
- REM The above line displays a screen message.
-
- goto %1
-
- :1
-
- REM You would place all of the necessary lines to access your WP here.
-
- Place Black Green 27 12 "Word Processing"
- Wait 2000
-
- REM The above lines makes the computer display a message applicable
- REM to the menu choice and then wait for 2000 milliseconds.
-
- goto DONE
-
- :2
- REM Lines concerning Choice #2 go here.
-
- Place Black Green 27 12 "Data Base"
- Wait 2000
-
- REM The above lines makes the computer display a message applicable
- REM to the menu choice and then wait for 2000 milliseconds.
-
- goto DONE
-
- :3
- REM Lines concerning Choice #3 go here.
-
- Place Black Green 27 12 "Spread Sheet"
- Wait 2000
-
- REM The above lines makes the computer display a message applicable
- REM to the menu choice and then wait for 2000 milliseconds.
-
- goto DONE
-
- :4
- REM Lines Concerning Choice #4 go here.
-
- Place Black Green 27 12 "Graphics"
- Wait 2000
-
- REM The above lines makes the computer display a message applicable
- REM to the menu choice and then wait for 2000 milliseconds.
-
- goto DONE
-
- :5
- REM Lines Concerning Choice #5 go here.
-
- Place Black Green 27 12 "Utilities"
- Wait 2000
-
- REM The above lines makes the computer display a message applicable
- REM to the menu choice and then wait for 2000 milliseconds.
-
- goto DONE
-
- :DONE
- Cursor 12 13
-
- REM The above line reinstates the cursor.
-
- REM You should have a 'CD' command here. One that will change to the
- REM directory where "PBMenu.EXE" is stored.
-
- REM Remember the laws of batch files recquire that you not call another
- REM batch file from within one, run-time of the original will terminate
- REM on that line. All batch code must therefore be included withen this
- REM batch file.